Hệ thống quản lý phòng khám trực tuyến bằng PHP

1 <?php
2
3     
// IMPORTANT:
4     
// ==========
5     
// When translating, only translate the strings that are
6     
// TO THE RIGHT OF the equal sign (=).
7     
//
8     
// Do NOT translate the strings between square brackets ([])
9     
//
10     
// Also, leave the text between < and > untranslated.
11     
//
12     
// =====================================================
13     
// PLEASE NOTE:
14     
// ============
15     
// When a new version of AppGini is released, new strings
16     
// might be added to the "defaultLang.php" file. To translate
17     
// them, simply copy them to this file ("language.php") and
18     
// translate them here. Do NOT translate them directly in
19     
// the "defaultLang.php" file.
20     
// =====================================================
21         
22
23
24     
// datalist.php
25     $Translation[
'quick search'] = "Quick Search";
26     $Translation[
'records x to y of z'] = "Records <FirstRecord> to <LastRecord> of <RecordCount>";
27     $Translation[
'filters'] = "Filters";
28     $Translation[
'filter'] = "Filter";
29     $Translation[
'filtered field'] = "Filtered field";
30     $Translation[
'comparison operator'] = "Comparison Operator";
31     $Translation[
'comparison value'] = "Comparison Value";
32     $Translation[
'and'] = "And";
33     $Translation[
'or'] = "Or";
34     $Translation[
'equal to'] = "Equal to";
35     $Translation[
'not equal to'] = "Not equal to";
36     $Translation[
'greater than'] = "Greater than";
37     $Translation[
'greater than or equal to'] = "Greater than or equal to";
38     $Translation[
'less than'] = "Less than";
39     $Translation[
'less than or equal to'] = "Less than or equal to";
40     $Translation[
'like'] = "Like";
41     $Translation[
'not like'] = "Not like";
42     $Translation[
'is empty'] = "Is empty";
43     $Translation[
'is not empty'] = "Is not empty";
44     $Translation[
'apply filters'] = "Apply filters";
45     $Translation[
'save filters'] = "Save and apply filters";
46     $Translation[
'saved filters title'] = "HTML Code For The Applied Filters";
47     $Translation[
'saved filters instructions'] = "Copy the code below and paste it to an HTML file to save the filter you just defined so that you can return to it at any time in the future without having to redefine it. You can save this HTML code on your computer or on any server and access this prefiltered table view through it.";
48     $Translation[
'hide code'] = "Hide this code";
49     $Translation[
'printer friendly view'] = "Printer-friendly view";
50     $Translation[
'save as csv'] = "Download as csv file (comma-separated values)";
51     $Translation[
'edit filters'] = "Edit filters";
52     $Translation[
'clear filters'] = "Clear filters";
53     $Translation[
'order by'] = 'Order by';
54     $Translation[
'go to page'] = 'Go to page:';
55     $Translation[
'none'] = 'None';
56     $Translation[
'Select all records'] = 'Select all records';
57     $Translation[
'With selected records'] = 'With selected records';
58     $Translation[
'Print Preview Detail View'] = 'Print Preview Detail View';
59     $Translation[
'Print Preview Table View'] = 'Print Preview Table View';
60     $Translation[
'Print'] = 'Print';
61     $Translation[
'Cancel Printing'] = 'Cancel Printing';
62     $Translation[
'Cancel Selection'] = 'Cancel Selection';
63     $Translation[
'Maximum records allowed to enable this feature is'] = 'Maximum records allowed to enable this feature is';
64     $Translation[
'No matches found!'] = 'No matches found!';
65     $Translation[
'Start typing to get suggestions'] = 'Start typing to get suggestions.';
66
67     
// _dml.php
68     $Translation[
'are you sure?'] = 'Are you sure you want to delete this record?';
69     $Translation[
'add new record'] = 'Add new record';
70     $Translation[
'update record'] = 'Update record';
71     $Translation[
'delete record'] = 'Delete record';
72     $Translation[
'deselect record'] = 'Deselect record';
73     $Translation[
"couldn't delete"] = 'Could not delete the record due to the presence of <RelatedRecords> related record(s) in table [<TableName>]';
74     $Translation[
'confirm delete'] = 'This record has <RelatedRecords> related record(s) in table [<TableName>]. Do you still want to delete it? <Delete> &nbsp; <Cancel>';
75     $Translation[
'yes'] = 'Yes';
76     $Translation[
'no'] = 'No';
77     $Translation[
'pkfield empty'] = ' field is a primary key field and cannot be empty.';
78     $Translation[
'upload image'] = 'Upload new file ';
79     $Translation[
'select image'] = 'Select an image ';
80     $Translation[
'remove image'] = 'Remove file';
81     $Translation[
'month names'] = 'January,February,March,April,May,June,July,August,September,October,November,December';
82     $Translation[
'field not null'] = 'You cannot leave this field empty.';
83     $Translation[
'*'] = '*';
84     $Translation[
'today'] = 'Today';
85     $Translation[
'Hold CTRL key to select multiple items from the above list.'] = 'Hold CTRL key to select multiple items from the above list.';
86     $Translation[
'Save New'] = 'Save New';
87     $Translation[
'Save As Copy'] = 'Save As Copy';
88     $Translation[
'Deselect'] = 'Cancel';
89     $Translation[
'Add New'] = 'Add New';
90     $Translation[
'Delete'] = 'Delete';
91     $Translation[
'Cancel'] = 'Cancel';
92     $Translation[
'Print Preview'] = 'Print Preview';
93     $Translation[
'Save Changes'] = 'Save Changes';
94     $Translation[
'CSV'] = 'Save CSV';
95     $Translation[
'Reset Filters'] = 'Show All';
96     $Translation[
'Find It'] = 'Find It';
97     $Translation[
'Previous'] = 'Previous';
98     $Translation[
'Next'] = 'Next';
99     $Translation[
'Back'] = 'Back';
100
101     
// lib.php
102     $Translation[
'select a table'] = "Jump to ...";
103     $Translation[
'homepage'] = "Homepage";
104     $Translation[
'error:'] = "Error:";
105     $Translation[
'sql error:'] = "SQL error:";
106     $Translation[
'query:'] = "Query:";
107     $Translation[
'< back'] = "Back";
108     $Translation[
"if you haven't set up"] = "If you haven't set up the database yet, you can do so by clicking <a href='setup.php'>here</a>.";
109     $Translation[
'file too large']="Error: The file you uploaded exceeds the maximum allowed size of <MaxSize> KB";
110     $Translation[
'invalid file type']="Error: This file type is not allowed. Only <FileTypes> files can be uploaded";
111
112     
// setup.php
113     $Translation[
'goto start page'] = "Back to start page";
114     $Translation[
'no db connection'] = "Couldn't establish a database connection.";
115     $Translation[
'no db name'] = "Couldn't access the database named '<DBName>' on this server.";
116     $Translation[
'provide connection data'] = "Please provide the following data to connect to the database:";
117     $Translation[
'mysql server'] = "MySQL server (host)";
118     $Translation[
'mysql username'] = "MySQL Username";
119     $Translation[
'mysql password'] = "MySQL password";
120     $Translation[
'mysql db'] = "Database name";
121     $Translation[
'connect'] = "Connect";
122     $Translation[
'couldnt save config'] = "Couldn't save connection data into 'config.php'.<br />Please make sure that the folder:<br />'".dirname(__FILE__)."'<br />is writable (chmod 775 or chmod 777).";
123     $Translation[
'setup performed'] = "Setup already performed on";
124     $Translation[
'delete md5'] = "If you want to force setup to run again, you should first delete the file 'setup.md5' from this folder.";
125     $Translation[
'table exists'] = "Table <b><TableName></b> exists, containing <NumRecords> records.";
126     $Translation[
'failed'] = "Failed";
127     $Translation[
'ok'] = "Ok";
128     $Translation[
'mysql said'] = "MySQL said:";
129     $Translation[
'table uptodate'] = "Table is up-to-date.";
130     $Translation[
'couldnt count'] = "Couldn't count records of table <b><TableName></b>";
131     $Translation[
'creating table'] = "Creating table <b><TableName></b> ... ";
132
133     
// separateDVTV.php
134     $Translation[
'please wait'] = "Please wait";
135
136     
// _view.php
137     $Translation[
'tableAccessDenied']="Sorry! You don't have permission to access this table. Please contact the admin.";
138
139     
// incCommon.php
140     $Translation[
'not signed in']="You are not signed in";
141     $Translation[
'sign in']="Sign In";
142     $Translation[
'signed as']="Signed in as";
143     $Translation[
'sign out']="Sign Out";
144     $Translation[
'admin setup needed']="Admin setup was not performed. Please log in to the <a href=admin/>admin control panel</a> to perform the setup.";
145     $Translation[
'db setup needed']="Program setup was not performed yet. Please log in to the <a href=setup.php>setup page</a> first.";
146     $Translation[
'new record saved']="The new record has been saved successfully.";
147     $Translation[
'record updated']="The changes have been saved successfully.";
148
149     
// index.php
150     $Translation[
'admin area']="Admin Area";
151     $Translation[
'login failed']="Your previous login attempt failed. Try again.";
152     $Translation[
'sign in here']="Sign In Here";
153     $Translation[
'remember me']="Remember me";
154     $Translation[
'username']="Username";
155     $Translation[
'password']="Password";
156     $Translation[
'go to signup']="Don't have a username? <br />&nbsp; <a href=membership_signup.php>Sign up here</a>";
157     $Translation[
'forgot password']="Forgot your password? <a href=membership_passwordReset.php>Click here</a>";
158     $Translation[
'browse as guest']="<a href=index.php>Continue browsing as a guest</a>";
159     $Translation[
'no table access']="You don't have enough permissions to access any page here. Please sign in first.";
160     $Translation[
'signup']="Sign up";
161
162     
// checkMemberID.php
163     $Translation[
'user already exists']="Username '<MemberID>' already exists. Try another username.";
164     $Translation[
'user available']="Username '<MemberID>' is available and you can take it.";
165     $Translation[
'empty user']="Please type a username in the box first then click 'Check availability'.";
166
167     
// membership_thankyou.php
168     $Translation[
'thanks']="Thank you for signing up!";
169     $Translation[
'sign in no approval']="If you have chosen a group that doesn't require admin approval, you can sign in right now <a href=index.php?signIn=1>here</a>.";
170     $Translation[
'sign in wait approval']="If you have chosen a group that requires admin approval, please wait for an email confirming your approval.";
171
172     
// membership_signup.php
173     $Translation[
'username empty']="You must provide a username. Please go back and type a username";
174     $Translation[
'password invalid']="You must provide a password of 4 characters or more, without spaces. Please go back and type a valid password";
175     $Translation[
'password no match']="Password doesn't match. Please go back and correct the password";
176     $Translation[
'username exists']="Username already exists. Please go back and choose a different username.";
177     $Translation[
'email invalid']="Invalid email address. Please go back and correct your email address.";
178     $Translation[
'group invalid']="Invalid group. Please go back and correct the group selection.";
179     $Translation[
'sign up here']="Sign Up Here!";
180     $Translation[
'registered? sign in']="Already registered? <a href=index.php?signIn=1>Sign in here</a>.";
181     $Translation[
'sign up disabled']="Sorry! Sign-up is temporarily disabled by admin. Try again later.";
182     $Translation[
'check availability']="Check if this username is available";
183     $Translation[
'confirm password']="Confirm Password";
184     $Translation[
'email']="Email Address";
185     $Translation[
'group']="Group";
186     $Translation[
'groups *']="If you choose to sign up to a group marked with an asterisk (*), you won't be able to log in until the admin approves you. You'll receive an email when you are approved.";
187     $Translation[
'sign up']="Sign Up";
188
189     
// membership_passwordReset.php
190     $Translation[
'password reset']="Password Reset Page";
191     $Translation[
'password reset details']="Enter your username or email address below. We'll then send a special link to your email. After you click on that link, you'll be asked to enter a new password.";
192     $Translation[
'password reset subject']="Password reset instructions";
193     $Translation[
'password reset message']="Dear member, \n If you have requested to reset/change your password, please click on this link: \n <ResetLink> \n\n If you didn't request a password reset/change, please ignore this message. \n\n Regards.";
194     $Translation[
'password reset ready']="An email with password reset instructions has been sent to your registered email address. Please follow the instructions in that email message.<br /><br />If you don't receive this email within 5 minutes, try resetting your password again, and make sure you enter a correct username or email address.";
195     $Translation[
'password reset invalid']="Invalid username or password. <a href=membership_passwordReset.php>Try again</a>, or go <a href=index.php>back to homepage</a>.";
196     $Translation[
'password change']="Password Change Page";
197     $Translation[
'new password']="New password";
198     $Translation[
'password reset done']="Your password was changed successfully. You can <a href=index.php?signOut=1>log in with the new password here</a>.";
199
200     $Translation[
'Loading ...']='Loading ...';
201     $Translation[
'No records found']='No records found';
202     $Translation[
'You can add children records after saving the main record first']='You can add child records after saving the main record first';
203
204     $Translation[
'ascending'] = 'Ascending';
205     $Translation[
'descending'] = 'Descending';
206     $Translation[
'then by'] = 'Then by';
207
208     
// membership_profile
209     $Translation[
'Legend'] = 'Legend';
210     $Translation[
'Table'] = 'Table';
211     $Translation[
'Edit'] = 'Edit';
212     $Translation[
'View'] = 'View';
213     $Translation[
'Only your own records'] = 'Only your own records';
214     $Translation[
'All records owned by your group'] = 'All records owned by your group';
215     $Translation[
'All records'] = 'All records';
216     $Translation[
'Not allowed'] = 'Not allowed';
217     $Translation[
'Your info'] = 'Your info';
218     $Translation[
'Hello user'] = 'Hello %s!';
219     $Translation[
'Your access permissions'] = 'Your access permissions';
220     $Translation[
'Update profile'] = 'Update profile';
221     $Translation[
'Update password'] = 'Update password';
222     $Translation[
'Change your password'] = 'Change your password';
223     $Translation[
'Old password'] = 'Old Password';
224     $Translation[
'Password strength: weak'] = 'Password strength: weak';
225     $Translation[
'Password strength: good'] = 'Password strength: good';
226     $Translation[
'Password strength: strong'] = 'Password strength: strong';
227     $Translation[
'Wrong password'] = 'Wrong password';
228     $Translation[
'Your profile was updated successfully'] = 'Your profile was updated successfully';
229     $Translation[
'Your password was changed successfully'] = 'Your password was changed successfully';
230     $Translation[
'Your IP address'] = 'Your IP address';
231     
232     
/* Added in AppGini 4.90 */
233     $Translation[
'Records to display'] = 'Records to display';
234     
235     
/* Added in AppGini 5.10 */
236     $Translation[
'Setup Data'] = 'Setup Data';
237     $Translation[
'Database Information'] = 'Database Information';
238     $Translation[
'Admin Information'] = 'Admin Information';
239     $Translation[
'setup intro 1'] = 'There doesn\'t seem to be a configuration file. This is necessary for the application to work.<br><br>This setup page will help you create that file. But in some server configurations this might not work. In that case you might need to adjust the folder permissions, or create the config file manually.';
240     $Translation[
'setup intro 2'] = 'Welcome to your new AppGini application! Before getting started, we need some information about your database. You will need to know the following before proceeding:<ol><li>Database server (host)</li><li>Database name</li><li>Database username</li><li>Database password</li></ol>The above items were probably supplied to you by your web hosting provider. If you do not have this information, then you will need to contact them or refer to their service documentation before you can continue here. If you\'re ready, let\'s start!';
241     $Translation[
'setup finished'] = '<b>Success!</b><br><br>Your AppGini application has been installed. Here are some suggestions to begin using it:';
242     $Translation[
'setup next 1'] = 'Start using your application to add data, or work with existing data, if any.';
243     $Translation[
'setup next 2'] = 'Import existing data into your application from a CSV file.';
244     $Translation[
'setup next 3'] = 'Go to the admin homepage where you can change many other application settings.';
245     $Translation[
'db_name help'] = 'The name of the database you want to run your AppGini application in.';
246     $Translation[
'db_server help'] = '<i>localhost</i> works on most servers. If not, you should be able to get this info from your web hosting provider.';
247     $Translation[
'db_username help'] = 'Your MySQL username';
248     $Translation[
'db_password help'] = 'Your MySQL password';
249     $Translation[
'username help'] = 'Specify the admin username you\'d like to use to access the admin area. Must be four characters or more.';
250     $Translation[
'password help'] = 'Specify a strong password to access the admin area.';
251     $Translation[
'email help'] = 'Enter the email address where you want admin notifications to be sent.';
252     $Translation[
'Continue'] = 'Continue ...';
253     $Translation[
'Lets go'] = 'Let\'s go!';
254     $Translation[
'Submit'] = 'Submit';
255     $Translation[
'Hide'] = 'Hide help';
256     $Translation[
'Database info is correct'] = '&#10003; Database info is correct!';
257     $Translation[
'Database connection error'] = '&#10007; Database connection error!';
258     $Translation[
'The following errors occured'] = 'The following errors occured';
259     $Translation[
'failed to create config instructions'] = 'This is most probably due to folder permissions that are set to prevent creating files by your web server. Don\'t worry! You can still create the config file manually.<br><br>Just paste the following code into a text editor and save the file as "config.php", then upload it using FTP or any other method to the folder %s on your server.';
260     $Translation[
'Only show records having filterer'] = 'Only show records where %s is %s';
261     
262     
/* Added in AppGini 5.20 */
263     $Translation[
'You don\'t have enough permissions to delete this record'] = 'You don\'t have enough permissions to delete this record';
264     $Translation[
'Couldn\'t delete this record'] = 'Couldn\'t delete this record';
265     $Translation[
'The record has been deleted successfully'] = 'The record has been deleted successfully';
266     $Translation[
'Couldn\'t save changes to the record'] = 'Couldn\'t save changes to the record';
267     $Translation[
'Couldn\'t save the new record'] = 'Couldn\'t save the new record';
268     
269     
/* Added in AppGini 5.30 */
270     $Translation[
'More'] = 'More';
271     $Translation[
'Confirm deleting multiple records'] = 'Confirm deleting multiple records';
272     $Translation[
'<n> records will be deleted. Are you sure you want to do this?'] = '<n> records will be deleted. Are you sure you want to do this?';
273     $Translation[
'Yes, delete them!'] = 'Yes, delete them!';
274     $Translation[
'No, keep them.'] = 'No, keep them.';
275     $Translation[
'Deleting record <i> of <n>'] = 'Deleting record <i> of <n>';
276     $Translation[
'Delete progress'] = 'Delete progress';
277     $Translation[
'Show/hide details'] = 'Show/hide details';
278     $Translation[
'Connection error'] = 'Connection error';
279     $Translation[
'Add more actions'] = 'Add more actions';
280     $Translation[
'Update progress'] = 'Update progress';
281     $Translation[
'Change owner'] = 'Change owner';
282     $Translation[
'Updating record <i> of <n>'] = 'Updating record <i> of <n>';
283     $Translation[
'Change owner of <n> selected records to'] = 'Change owner of <n> selected records to';
284
285     
/* Added in AppGini 5.40 */
286     $Translation[
'username invalid'] = 'Username <MemberID> already exists or is invalid. Make sure you provide a username containing 4 to 20 valid characters.';
287     $Translation[
'permalink'] = 'Permalink';
288     $Translation[
'invalid provider'] = 'Invalid provider!';
289     $Translation[
'invalid url'] = 'Invalid URL!';
290     $Translation[
'cant retrieve coordinates from url'] = 'Can\'t retrieve coordinates from URL!';
291
292     
/* Added in AppGini 5.51 */
293     $Translation[
'maintenance mode admin notification'] = 'Maintenance mode is enabled! You can disable it from the admin home page.';
294     $Translation[
'unique field error'] = 'This value already exists or is invalid. Please make sure to specify a unique valid value.';
295
296     
/* Added in AppGini 5.60 */
297     $Translation[
'show all user records from table'] = 'Show all records of this user from "<tablename>" table';
298     $Translation[
'show all group records from table'] = 'Show all records of this group from "<tablename>" table';
299     $Translation[
'email this user'] = 'Email this user';
300     $Translation[
'email this group'] = 'Email this group';
301     $Translation[
'owner'] = 'Owner';
302     $Translation[
'created'] = 'Created';
303     $Translation[
'last modified'] = 'Last modified';
304     $Translation[
'record has no owner'] = 'This record has no assigned owner. You can assign an owner from the admin area.';
305     $Translation[
'admin-only info'] = 'The above info is displayed because you are currently signed in as the super admin. Other users won\'t see this.';
306     $Translation[
'discard changes confirm'] = 'Discard changes to this record?';


Gõ tìm kiếm nhanh...